home *** CD-ROM | disk | FTP | other *** search
- // Smoke.h: interface for the Smoke class.
- //
- //////////////////////////////////////////////////////////////////////
-
- #if !defined(AFX_SMOKE_H__8B4CED66_68B9_11D4_8DF7_B78E3705833D__INCLUDED_)
- #define AFX_SMOKE_H__8B4CED66_68B9_11D4_8DF7_B78E3705833D__INCLUDED_
-
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
-
- #include "SmokeParticle.h"
-
- #define NUMSMOKEPARTICLES 3600
-
- class Smoke
- {
- public:
- Smoke();
- virtual ~Smoke();
- void Draw(void);
- void Update(void);
- SmokeParticle p[NUMSMOKEPARTICLES];
-
- };
-
- #endif // !defined(AFX_SMOKE_H__8B4CED66_68B9_11D4_8DF7_B78E3705833D__INCLUDED_)
-